projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
586ab69
)
(command-line): Call face-initialize before frame-initialize.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 14 Apr 1994 09:31:42 +0000
(09:31 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 14 Apr 1994 09:31:42 +0000
(09:31 +0000)
lisp/startup.el
patch
|
blob
|
history
diff --git
a/lisp/startup.el
b/lisp/startup.el
index 2742984888c55f9ea0ed9ef29d3deb9271b82fb4..36a7ee9c1eef749bd2050cabc4d609b9a3907cba 100644
(file)
--- a/
lisp/startup.el
+++ b/
lisp/startup.el
@@
-241,10
+241,10
@@
this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.")
(setcdr command-line-args args))
;; Under X Windows, this creates the X frame and deletes the terminal frame.
- (if (fboundp 'frame-initialize)
- (frame-initialize))
(if (fboundp 'face-initialize)
(face-initialize))
+ (if (fboundp 'frame-initialize)
+ (frame-initialize))
(run-hooks 'before-init-hook)